f48d676e47c019683a7b9ea65c454e1be5eecbd4,clc/modules/msgs/src/main/java/com/eucalyptus/ws/server/ServiceContextHandler.java,ServiceContextHandler,handleUpstream,#ChannelHandlerContext#ChannelEvent#,157

Before Change


        this.openTime.set( ctx.getChannel( ), System.currentTimeMillis( ) );
      } else if (evt.getState().equals(ChannelState.CONNECTED) && Boolean.FALSE.equals(evt.getValue())) {
        try {
          Contexts.clear( Contexts.lookup( ctx.getChannel( ) ) );
        } catch ( Throwable e1 ) {
          LOG.warn( "Failed to remove the channel context on connection close.", e1 );
        }
      }
      ctx.sendUpstream(e);
    } else if (e instanceof ExceptionEvent) {
      exceptionCaught(ctx, (ExceptionEvent) e);
      ctx.sendUpstream( e );
    } else {
      ctx.sendUpstream( e );
    }

After Change


      ctx.sendUpstream( e );
    } else if (e instanceof ExceptionEvent) {
      this.exceptionCaught(ctx, (ExceptionEvent) e);
      ctx.sendUpstream( e );
    } else {
      ctx.sendUpstream( e );
    }